Create chips for the majority of GB¶
This notebook samples from the majority of GB and dumps them to disk as TIF files to be loaded by TensorFlow.
import glob
import os
import requests
import shutil
import warnings
from random import shuffle
from itertools import product, chain
from pathlib import Path
import contextily
import dask
import dask_geopandas
import dask.bag
import dask.dataframe
import geopandas
import numpy
import pandas
import pygeos
import pyogrio
import xarray, rioxarray
import libpysal
from dask_geopandas.hilbert_distance import _hilbert_distance
from dask.distributed import Client, LocalCluster
from shapely.geometry import box
from shapely.ops import polygonize
from tqdm.auto import tqdm
from sqlalchemy import create_engine
import tools
client = Client(
LocalCluster(n_workers=16, threads_per_worker=1)
)
client
Client
Client-b04e3f2f-cc6a-11ec-8c44-75a5a04dacd0
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://127.0.0.1:8787/status |
Cluster Info
LocalCluster
9255e55a
Dashboard: http://127.0.0.1:8787/status | Workers: 16 |
Total threads: 16 | Total memory: 125.54 GiB |
Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-47069bd0-a500-473b-83ec-771ed12c985d
Comm: tcp://127.0.0.1:38699 | Workers: 16 |
Dashboard: http://127.0.0.1:8787/status | Total threads: 16 |
Started: Just now | Total memory: 125.54 GiB |
Workers
Worker: 0
Comm: tcp://127.0.0.1:40117 | Total threads: 1 |
Dashboard: http://127.0.0.1:43989/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:40007 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-lrko7dns |
Worker: 1
Comm: tcp://127.0.0.1:34321 | Total threads: 1 |
Dashboard: http://127.0.0.1:38517/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32909 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-01ytrt70 |
Worker: 2
Comm: tcp://127.0.0.1:45529 | Total threads: 1 |
Dashboard: http://127.0.0.1:34801/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:36173 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-p9e7dwi1 |
Worker: 3
Comm: tcp://127.0.0.1:45909 | Total threads: 1 |
Dashboard: http://127.0.0.1:38169/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:36395 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-r5xbwd2p |
Worker: 4
Comm: tcp://127.0.0.1:42733 | Total threads: 1 |
Dashboard: http://127.0.0.1:34951/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46375 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-_zbmx0oq |
Worker: 5
Comm: tcp://127.0.0.1:40053 | Total threads: 1 |
Dashboard: http://127.0.0.1:40411/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32937 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-l9luyeq6 |
Worker: 6
Comm: tcp://127.0.0.1:37807 | Total threads: 1 |
Dashboard: http://127.0.0.1:33287/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:38651 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-zea1pdbr |
Worker: 7
Comm: tcp://127.0.0.1:34359 | Total threads: 1 |
Dashboard: http://127.0.0.1:42085/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:38093 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-h3neii43 |
Worker: 8
Comm: tcp://127.0.0.1:33045 | Total threads: 1 |
Dashboard: http://127.0.0.1:38709/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37615 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-budqf6my |
Worker: 9
Comm: tcp://127.0.0.1:38089 | Total threads: 1 |
Dashboard: http://127.0.0.1:34839/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:35023 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-gdeh26r4 |
Worker: 10
Comm: tcp://127.0.0.1:44641 | Total threads: 1 |
Dashboard: http://127.0.0.1:46237/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:35339 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-prfwq92b |
Worker: 11
Comm: tcp://127.0.0.1:34343 | Total threads: 1 |
Dashboard: http://127.0.0.1:39409/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:35879 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-rkyun7c1 |
Worker: 12
Comm: tcp://127.0.0.1:37099 | Total threads: 1 |
Dashboard: http://127.0.0.1:36083/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43413 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-y64r7hid |
Worker: 13
Comm: tcp://127.0.0.1:44911 | Total threads: 1 |
Dashboard: http://127.0.0.1:37625/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37959 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-9ifmffjl |
Worker: 14
Comm: tcp://127.0.0.1:36609 | Total threads: 1 |
Dashboard: http://127.0.0.1:36735/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46425 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-kk9nix7f |
Worker: 15
Comm: tcp://127.0.0.1:32885 | Total threads: 1 |
Dashboard: http://127.0.0.1:41153/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:36903 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-r38zmhgy |
Specs¶
specs = {
'chip_size': 64,
'bands': [1, 2, 3], #RGB
'mosaic_p': (
'/home/jovyan/work/urbangrammar_samba/'
'ghs_composite_s2/GHS-composite-S2.vrt'
),
'spsig_p': (
'/home/jovyan/work/urbangrammar_samba/spatial_signatures/'
'signatures/'
'signatures_combined_levels_simplified_clip.gpkg'
),
'points_temp': '/home/jovyan/work/chips_gb/temp/points/',
'folder': (
'/home/jovyan/work/chips_gb/64_shuffled/'
),
}
Load signatures and Sentinel2 mosaic¶
%%time
spsig = pyogrio.read_dataframe("../../urbangrammar_samba/spatial_signatures/signatures/signatures_combined_levels_simplified_clip.gpkg")
CPU times: user 834 ms, sys: 384 ms, total: 1.22 s
Wall time: 2.27 s
mosaic = rioxarray.open_rasterio(
specs['mosaic_p'], chunks={'x': 1024, 'y': 1024}
)
Get range of coordinates from the mosaic¶
start_x = float(mosaic["x"].min())
start_y = float(mosaic["y"].min())
end_x = float(mosaic["x"].max())
end_y = float(mosaic["y"].max())
Create coordinates of individual points at set chip size. We are using only the southern half of the extent that covers the country up to Perth.¶
x_coords = numpy.arange(start_x, end_x, specs["chip_size"] * 10)
y_coords = numpy.arange(start_y, end_y, specs["chip_size"] * 10)
x_bag = dask.bag.from_sequence(x_coords)
y_bag = dask.bag.from_sequence(y_coords[:y_coords.shape[0]//2])
product_bag = x_bag.product(y_bag)
ddf = product_bag.to_dataframe(meta={"x": float, "y":float})
%%time
ddf.to_parquet("/home/jovyan/work/chips_gb/temp/coords/", overwrite=True)
CPU times: user 18.7 s, sys: 2.85 s, total: 21.5 s
Wall time: 21.5 s
[None]
Create points from coordinates¶
ddf = dask.dataframe.read_parquet("/home/jovyan/work/chips_gb/temp/coords/")
ddf["geometry"] = dask_geopandas.points_from_xy(ddf, "x", "y", crs=27700)
gddf = dask_geopandas.from_dask_dataframe(ddf).set_crs(27700)
gddf.to_parquet(specs["points_temp"], overwrite=True)
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 43% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 44% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 44% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 46% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 51% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 40% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 56% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 51% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 51% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 38% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 41% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 51% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 47% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 48% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 47% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 45% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 59% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 60% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 64% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 75% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 76% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 77% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 78% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 79% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 80% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 81% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 84% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.utils_perf - WARNING - full garbage collections took 83% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%) distributed.utils_perf - WARNING - full garbage collections took 82% CPU time recently (threshold: 10%)
[None]
client.restart()
distributed.utils_perf - WARNING - full garbage collections took 73% CPU time recently (threshold: 10%)
Client
Client-be0aaeb7-cc68-11ec-8045-8b56d9cf1b3c
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://127.0.0.1:36081/status |
Cluster Info
LocalCluster
810a252d
Dashboard: http://127.0.0.1:36081/status | Workers: 16 |
Total threads: 16 | Total memory: 125.54 GiB |
Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-513e68fd-f47f-4ee8-8608-7607d14ab318
Comm: tcp://127.0.0.1:45473 | Workers: 16 |
Dashboard: http://127.0.0.1:36081/status | Total threads: 16 |
Started: 5 minutes ago | Total memory: 125.54 GiB |
Workers
Worker: 0
Comm: tcp://127.0.0.1:41241 | Total threads: 1 |
Dashboard: http://127.0.0.1:42223/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43653 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-p8kiuc9j |
Worker: 1
Comm: tcp://127.0.0.1:37297 | Total threads: 1 |
Dashboard: http://127.0.0.1:46567/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32867 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-uosxnvk6 |
Worker: 2
Comm: tcp://127.0.0.1:45675 | Total threads: 1 |
Dashboard: http://127.0.0.1:39005/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34075 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-h8sf3fu1 |
Worker: 3
Comm: tcp://127.0.0.1:40679 | Total threads: 1 |
Dashboard: http://127.0.0.1:44933/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34823 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-_ztybmkg |
Worker: 4
Comm: tcp://127.0.0.1:33385 | Total threads: 1 |
Dashboard: http://127.0.0.1:38543/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45793 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-w7_tkku_ |
Worker: 5
Comm: tcp://127.0.0.1:39689 | Total threads: 1 |
Dashboard: http://127.0.0.1:34957/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37435 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-8iw8scj7 |
Worker: 6
Comm: tcp://127.0.0.1:39989 | Total threads: 1 |
Dashboard: http://127.0.0.1:41227/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34515 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-zvmdcowb |
Worker: 7
Comm: tcp://127.0.0.1:37613 | Total threads: 1 |
Dashboard: http://127.0.0.1:36929/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:39107 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-08h9tjlq |
Worker: 8
Comm: tcp://127.0.0.1:32911 | Total threads: 1 |
Dashboard: http://127.0.0.1:42961/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45011 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-n5k0mccv |
Worker: 9
Comm: tcp://127.0.0.1:35411 | Total threads: 1 |
Dashboard: http://127.0.0.1:40781/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:41169 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-eyzhzktn |
Worker: 10
Comm: tcp://127.0.0.1:36953 | Total threads: 1 |
Dashboard: http://127.0.0.1:40279/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45263 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-kcb98dmg |
Worker: 11
Comm: tcp://127.0.0.1:45421 | Total threads: 1 |
Dashboard: http://127.0.0.1:38885/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:42741 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-5aeqccin |
Worker: 12
Comm: tcp://127.0.0.1:45393 | Total threads: 1 |
Dashboard: http://127.0.0.1:35435/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45411 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-949bzrgf |
Worker: 13
Comm: tcp://127.0.0.1:43823 | Total threads: 1 |
Dashboard: http://127.0.0.1:44767/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43377 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-mj67ntxd |
Worker: 14
Comm: tcp://127.0.0.1:44133 | Total threads: 1 |
Dashboard: http://127.0.0.1:33533/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:42905 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-pg5cbnrj |
Worker: 15
Comm: tcp://127.0.0.1:46643 | Total threads: 1 |
Dashboard: http://127.0.0.1:42357/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46187 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-ru2ju2uh |
Filter points that fall on land.¶
Clip by the coastline
Spatial join
signatures = spsig[['signature_type', 'geometry']].set_index(_hilbert_distance(spsig, spsig.total_bounds, level=10))
points = dask_geopandas.read_parquet(specs["points_temp"])
points_within = dask_geopandas.sjoin(points, signatures, how="inner", op='within')
/tmp/ipykernel_32837/3757199691.py:1: FutureWarning: The `op` parameter is deprecated and will be removed in a future release. Please use the `predicate` parameter instead. points_within = dask_geopandas.sjoin(points, signatures, how="inner", op='within')
points_within.to_parquet("/home/jovyan/work/chips_gb/temp/points_within/", overwrite=True)
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( distributed.worker - WARNING - Compute Failed Function: write_metadata args: ([[{'meta': <pyarrow._parquet.FileMetaData object at 0x7f7f7a552720> created_by: parquet-cpp-arrow version 5.0.0 num_columns: 6 num_rows: 0 num_row_groups: 2574 format_version: 1.0 serialized_size: 0, 'schema': x: double y: double geometry: null index_right: uint64 signature_type: null __null_dask_index__: int64 -- schema metadata -- pandas: '{"index_columns": ["__null_dask_index__"], "column_indexes": [{"' + 916 geo: '{"primary_column": "geometry", "columns": {"geometry": {"crs": "PRO' + 1381}], [{'meta': <pyarrow._parquet.FileMetaData object at 0x7f7f667089a0> created_by: parquet-cpp-arrow version 5.0.0 num_columns: 6 num_rows: 0 num_row_groups: 1 format_version: 1.0 serialized_size: 6943}], [{'meta': <pyarrow._parquet.FileMetaData object at 0x7f7f6670ebd0> created_by: parquet-cpp-arrow version 5.0.0 num_columns: 6 num_rows: 0 num_row_groups: 1 format_version: 1.0 serialized_size: 6943}], [{'meta': <pyarrow._parquet.FileMetaData object at 0x7f7f66b kwargs: {'append': False, 'compression': 'snappy'} Exception: 'RuntimeError(\'Schemas are inconsistent, try using `to_parquet(..., schema="infer")`, or pass an explicit pyarrow schema. Such as `to_parquet(..., schema={"column1": pa.string()})`\')'
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/arrow.py in _append_row_groups()
57 try:
---> 58 metadata.append_row_groups(md)
59 except RuntimeError as err:
/opt/conda/lib/python3.9/site-packages/pyarrow/_parquet.pyx in pyarrow._parquet.FileMetaData.append_row_groups()
623 c_metadata = other.sp_metadata
--> 624 self._metadata.AppendRowGroups(deref(c_metadata))
625
RuntimeError: AppendRowGroups requires equal schemas.
The above exception was the direct cause of the following exception:
RuntimeError Traceback (most recent call last)
/tmp/ipykernel_32837/3783368450.py in <module>
----> 1 points_within.to_parquet("/home/jovyan/work/chips_gb/temp/points_within/", overwrite=True)
/opt/conda/lib/python3.9/site-packages/dask_geopandas/core.py in to_parquet(self, path, *args, **kwargs)
585 from .io.parquet import to_parquet
586
--> 587 return to_parquet(self, path, *args, **kwargs)
588
589 def to_feather(self, path, *args, **kwargs):
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py in to_parquet(df, path, engine, compression, write_index, append, overwrite, ignore_divisions, partition_on, storage_options, custom_metadata, write_metadata_file, compute, compute_kwargs, schema, name_function, **kwargs)
838 graph = HighLevelGraph.from_collections(meta_name, dsk, dependencies=(data_write,))
839 if compute:
--> 840 return compute_as_if_collection(
841 Scalar, graph, [(meta_name, 0)], **compute_kwargs
842 )
/opt/conda/lib/python3.9/site-packages/dask/base.py in compute_as_if_collection(cls, dsk, keys, scheduler, get, **kwargs)
315 schedule = get_scheduler(scheduler=scheduler, cls=cls, get=get)
316 dsk2 = optimization_function(cls)(dsk, keys, **kwargs)
--> 317 return schedule(dsk2, keys, **kwargs)
318
319
/opt/conda/lib/python3.9/site-packages/distributed/client.py in get(self, dsk, keys, workers, allow_other_workers, resources, sync, asynchronous, direct, retries, priority, fifo_timeout, actors, **kwargs)
3008 should_rejoin = False
3009 try:
-> 3010 results = self.gather(packed, asynchronous=asynchronous, direct=direct)
3011 finally:
3012 for f in futures.values():
/opt/conda/lib/python3.9/site-packages/distributed/client.py in gather(self, futures, errors, direct, asynchronous)
2160 else:
2161 local_worker = None
-> 2162 return self.sync(
2163 self._gather,
2164 futures,
/opt/conda/lib/python3.9/site-packages/distributed/utils.py in sync(self, func, asynchronous, callback_timeout, *args, **kwargs)
309 return future
310 else:
--> 311 return sync(
312 self.loop, func, *args, callback_timeout=callback_timeout, **kwargs
313 )
/opt/conda/lib/python3.9/site-packages/distributed/utils.py in sync(loop, func, callback_timeout, *args, **kwargs)
376 if error:
377 typ, exc, tb = error
--> 378 raise exc.with_traceback(tb)
379 else:
380 return result
/opt/conda/lib/python3.9/site-packages/distributed/utils.py in f()
349 future = asyncio.wait_for(future, callback_timeout)
350 future = asyncio.ensure_future(future)
--> 351 result = yield future
352 except Exception:
353 error = sys.exc_info()
/opt/conda/lib/python3.9/site-packages/tornado/gen.py in run(self)
760
761 try:
--> 762 value = future.result()
763 except Exception:
764 exc_info = sys.exc_info()
/opt/conda/lib/python3.9/site-packages/distributed/client.py in _gather(self, futures, errors, direct, local_worker)
2023 exc = CancelledError(key)
2024 else:
-> 2025 raise exception.with_traceback(traceback)
2026 raise exc
2027 if errors == "skip":
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/arrow.py in write_metadata()
783 i_start = 1
784 for i in range(i_start, len(parts)):
--> 785 _append_row_groups(_meta, parts[i][0]["meta"])
786 with fs.open(metadata_path, "wb") as fil:
787 _meta.write_metadata_file(fil)
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/arrow.py in _append_row_groups()
59 except RuntimeError as err:
60 if "requires equal schemas" in str(err):
---> 61 raise RuntimeError(
62 "Schemas are inconsistent, try using "
63 '`to_parquet(..., schema="infer")`, or pass an explicit '
RuntimeError: Schemas are inconsistent, try using `to_parquet(..., schema="infer")`, or pass an explicit pyarrow schema. Such as `to_parquet(..., schema={"column1": pa.string()})`
client.restart()
Client
Client-be0aaeb7-cc68-11ec-8045-8b56d9cf1b3c
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://127.0.0.1:36081/status |
Cluster Info
LocalCluster
810a252d
Dashboard: http://127.0.0.1:36081/status | Workers: 16 |
Total threads: 16 | Total memory: 125.54 GiB |
Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-513e68fd-f47f-4ee8-8608-7607d14ab318
Comm: tcp://127.0.0.1:45473 | Workers: 16 |
Dashboard: http://127.0.0.1:36081/status | Total threads: 16 |
Started: 10 minutes ago | Total memory: 125.54 GiB |
Workers
Worker: 0
Comm: tcp://127.0.0.1:46841 | Total threads: 1 |
Dashboard: http://127.0.0.1:35413/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43653 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-u9tvi3s4 |
Worker: 1
Comm: tcp://127.0.0.1:43219 | Total threads: 1 |
Dashboard: http://127.0.0.1:40509/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32867 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-u7d74bml |
Worker: 2
Comm: tcp://127.0.0.1:37885 | Total threads: 1 |
Dashboard: http://127.0.0.1:39001/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34075 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-2kggoapt |
Worker: 3
Comm: tcp://127.0.0.1:44439 | Total threads: 1 |
Dashboard: http://127.0.0.1:34945/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34823 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-8sjmkak5 |
Worker: 4
Comm: tcp://127.0.0.1:35979 | Total threads: 1 |
Dashboard: http://127.0.0.1:43133/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45793 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-t0g5vsci |
Worker: 5
Comm: tcp://127.0.0.1:43627 | Total threads: 1 |
Dashboard: http://127.0.0.1:45769/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37435 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-et5v8rp1 |
Worker: 6
Comm: tcp://127.0.0.1:38119 | Total threads: 1 |
Dashboard: http://127.0.0.1:39691/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34515 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-0y12agum |
Worker: 7
Comm: tcp://127.0.0.1:41439 | Total threads: 1 |
Dashboard: http://127.0.0.1:42913/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:39107 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-i_0ajyy4 |
Worker: 8
Comm: tcp://127.0.0.1:44099 | Total threads: 1 |
Dashboard: http://127.0.0.1:37551/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45011 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-iljp4lz8 |
Worker: 9
Comm: tcp://127.0.0.1:45879 | Total threads: 1 |
Dashboard: http://127.0.0.1:36101/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:41169 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-35v41rka |
Worker: 10
Comm: tcp://127.0.0.1:46203 | Total threads: 1 |
Dashboard: http://127.0.0.1:32917/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45263 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-0k4pwfhw |
Worker: 11
Comm: tcp://127.0.0.1:40781 | Total threads: 1 |
Dashboard: http://127.0.0.1:36933/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:42741 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-for_m6ap |
Worker: 12
Comm: tcp://127.0.0.1:40391 | Total threads: 1 |
Dashboard: http://127.0.0.1:41141/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45411 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-iughuyqu |
Worker: 13
Comm: tcp://127.0.0.1:42493 | Total threads: 1 |
Dashboard: http://127.0.0.1:39131/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43377 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-dc2e4jan |
Worker: 14
Comm: tcp://127.0.0.1:36227 | Total threads: 1 |
Dashboard: http://127.0.0.1:33227/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:42905 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-sxaakkd_ |
Worker: 15
Comm: tcp://127.0.0.1:39957 | Total threads: 1 |
Dashboard: http://127.0.0.1:39777/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46187 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-eux5t1j6 |
Create chip bounds polygons.¶
points_within = dask.dataframe.read_parquet("/home/jovyan/work/chips_gb/temp/points_within/", columns=["geometry"])
points_within["geometry"] = points_within["geometry"].map_partitions(geopandas.GeoSeries.from_wkb, meta=geopandas.GeoSeries())
points_within = dask_geopandas.from_dask_dataframe(points_within)
polygons = points_within.buffer(specs['chip_size'] * 10 / 2, cap_style=3)
points_within["geometry"] = polygons
points_within = points_within.repartition(partition_size="1MB")
# points_within.to_parquet("/home/jovyan/work/chips_gb/temp/polygons/", overwrite=True)
points_within.to_parquet(f"/home/jovyan/work/chips_gb/chip_bounds_{specs['chip_size']}/", overwrite=True)
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition(
[None]
Dump signatures to sorted partitioned parquet.¶
signatures = spsig[['signature_type', 'geometry']].set_index(_hilbert_distance(spsig, spsig.total_bounds, level=10))
signatures = dask_geopandas.from_geopandas(signatures.sort_index(), npartitions=1000)
signatures.to_parquet("/home/jovyan/work/chips_gb/temp/signatures")
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition(
[None]
client.restart()
Client
Client-be0aaeb7-cc68-11ec-8045-8b56d9cf1b3c
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://127.0.0.1:36081/status |
Cluster Info
LocalCluster
810a252d
Dashboard: http://127.0.0.1:36081/status | Workers: 16 |
Total threads: 16 | Total memory: 125.54 GiB |
Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-513e68fd-f47f-4ee8-8608-7607d14ab318
Comm: tcp://127.0.0.1:45473 | Workers: 16 |
Dashboard: http://127.0.0.1:36081/status | Total threads: 16 |
Started: 11 minutes ago | Total memory: 125.54 GiB |
Workers
Worker: 0
Comm: tcp://127.0.0.1:38923 | Total threads: 1 |
Dashboard: http://127.0.0.1:43125/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43653 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-lkyn7u0x |
Worker: 1
Comm: tcp://127.0.0.1:43361 | Total threads: 1 |
Dashboard: http://127.0.0.1:45075/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32867 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-8an_yx3c |
Worker: 2
Comm: tcp://127.0.0.1:33297 | Total threads: 1 |
Dashboard: http://127.0.0.1:38497/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34075 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-xk6xns8f |
Worker: 3
Comm: tcp://127.0.0.1:46157 | Total threads: 1 |
Dashboard: http://127.0.0.1:34165/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34823 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-pm30qjy1 |
Worker: 4
Comm: tcp://127.0.0.1:36859 | Total threads: 1 |
Dashboard: http://127.0.0.1:33905/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45793 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-hop3l9hz |
Worker: 5
Comm: tcp://127.0.0.1:37617 | Total threads: 1 |
Dashboard: http://127.0.0.1:43877/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37435 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-np1tjzd0 |
Worker: 6
Comm: tcp://127.0.0.1:39261 | Total threads: 1 |
Dashboard: http://127.0.0.1:37687/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:34515 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-n9lzjhpi |
Worker: 7
Comm: tcp://127.0.0.1:43317 | Total threads: 1 |
Dashboard: http://127.0.0.1:40423/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:39107 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-5zy4t7f2 |
Worker: 8
Comm: tcp://127.0.0.1:40123 | Total threads: 1 |
Dashboard: http://127.0.0.1:37357/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45011 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-ezzeu7ls |
Worker: 9
Comm: tcp://127.0.0.1:45753 | Total threads: 1 |
Dashboard: http://127.0.0.1:38189/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:41169 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-09d7l37p |
Worker: 10
Comm: tcp://127.0.0.1:39199 | Total threads: 1 |
Dashboard: http://127.0.0.1:38267/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45263 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-mlih5p_k |
Worker: 11
Comm: tcp://127.0.0.1:39359 | Total threads: 1 |
Dashboard: http://127.0.0.1:39049/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:42741 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-nmty9nxp |
Worker: 12
Comm: tcp://127.0.0.1:42865 | Total threads: 1 |
Dashboard: http://127.0.0.1:44897/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:45411 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-dd0n_df0 |
Worker: 13
Comm: tcp://127.0.0.1:43899 | Total threads: 1 |
Dashboard: http://127.0.0.1:44445/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43377 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-ohozdh91 |
Worker: 14
Comm: tcp://127.0.0.1:35039 | Total threads: 1 |
Dashboard: http://127.0.0.1:33371/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:42905 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-no4_bzaq |
Worker: 15
Comm: tcp://127.0.0.1:45375 | Total threads: 1 |
Dashboard: http://127.0.0.1:45159/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46187 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-hiwbkops |
Filter polygons fully wihtin a single signature type.¶
# polygons = dask_geopandas.read_parquet("/home/jovyan/work/chips_gb/temp/polygons/").set_crs(27700)
polygons = dask_geopandas.read_parquet(f"/home/jovyan/work/chips_gb/chip_bounds_{specs['chip_size']}/").set_crs(27700)
polygons_within = dask_geopandas.sjoin(polygons, spsig[['signature_type', 'geometry']], op="within")
/tmp/ipykernel_32837/3882422153.py:1: FutureWarning: The `op` parameter is deprecated and will be removed in a future release. Please use the `predicate` parameter instead. polygons_within = dask_geopandas.sjoin(polygons, spsig[['signature_type', 'geometry']], op="within")
polygons_within.to_parquet("/home/jovyan/work/chips_gb/temp/chip_bounds/", overwrite=True)
/opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition( /opt/conda/lib/python3.9/site-packages/dask/dataframe/io/parquet/core.py:157: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') return self.engine.write_partition(
[None]
client.restart()
tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7fcd7dbddc70>>, <Task finished name='Task-11' coro=<Worker.handle_scheduler() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1401> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1414, in handle_scheduler await self.close(report=False) File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7ff0eca78ca0>>, <Task finished name='Task-14' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7f3ac7fbfca0>>, <Task finished name='Task-13' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7f4ad22ddca0>>, <Task finished name='Task-13' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7fc2bbd2ecd0>>, <Task finished name='Task-14' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7f92b0087ca0>>, <Task finished name='Task-14' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7fab32962c70>>, <Task finished name='Task-14' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7fe7e1a9dc70>>, <Task finished name='Task-13' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7fcb99b20ca0>>, <Task finished name='Task-13' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) ConnectionRefusedError: [Errno 111] Connection refused The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 481, in wait_for return fut.result() File "/opt/conda/lib/python3.9/site-packages/distributed/comm/tcp.py", line 444, in connect convert_stream_closed_error(self, e) File "/opt/conda/lib/python3.9/site-packages/distributed/comm/tcp.py", line 133, in convert_stream_closed_error raise CommClosedError(f"in {obj}: {exc.__class__.__name__}: {exc}") from exc distributed.comm.core.CommClosedError: in <distributed.comm.tcp.TCPConnector object at 0x7fcbbff59580>: ConnectionRefusedError: [Errno 111] Connection refused During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 313, in connect await asyncio.sleep(backoff) File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 655, in sleep return await future asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7fc7fa645ca0>>, <Task finished name='Task-14' coro=<Worker.close() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1620> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed tornado.application - ERROR - Exception in callback functools.partial(<bound method IOLoop._discard_future_result of <tornado.platform.asyncio.AsyncIOLoop object at 0x7f8893d78ca0>>, <Task finished name='Task-12' coro=<Worker.handle_scheduler() done, defined at /opt/conda/lib/python3.9/site-packages/distributed/worker.py:1401> exception=CommClosedError('ConnectionPool not running. Status: Status.closed')>) Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/comm/core.py", line 289, in connect comm = await asyncio.wait_for( File "/opt/conda/lib/python3.9/asyncio/tasks.py", line 468, in wait_for await waiter asyncio.exceptions.CancelledError During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1089, in connect comm = await fut asyncio.exceptions.CancelledError The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 741, in _run_callback ret = callback() File "/opt/conda/lib/python3.9/site-packages/tornado/ioloop.py", line 765, in _discard_future_result future.result() File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1414, in handle_scheduler await self.close(report=False) File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1644, in close await r.close_gracefully() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1100, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed distributed.worker - WARNING - Heartbeat to scheduler failed Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1356, in heartbeat response = await retry_operation( File "/opt/conda/lib/python3.9/site-packages/distributed/utils_comm.py", line 386, in retry_operation return await retry( File "/opt/conda/lib/python3.9/site-packages/distributed/utils_comm.py", line 371, in retry return await coro() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1076, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed distributed.worker - WARNING - Heartbeat to scheduler failed Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1356, in heartbeat response = await retry_operation( File "/opt/conda/lib/python3.9/site-packages/distributed/utils_comm.py", line 386, in retry_operation return await retry( File "/opt/conda/lib/python3.9/site-packages/distributed/utils_comm.py", line 371, in retry return await coro() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1076, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed distributed.worker - WARNING - Heartbeat to scheduler failed Traceback (most recent call last): File "/opt/conda/lib/python3.9/site-packages/distributed/worker.py", line 1356, in heartbeat response = await retry_operation( File "/opt/conda/lib/python3.9/site-packages/distributed/utils_comm.py", line 386, in retry_operation return await retry( File "/opt/conda/lib/python3.9/site-packages/distributed/utils_comm.py", line 371, in retry return await coro() File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 919, in send_recv_from_rpc comm = await self.pool.connect(self.addr) File "/opt/conda/lib/python3.9/site-packages/distributed/core.py", line 1076, in connect raise CommClosedError( distributed.comm.core.CommClosedError: ConnectionPool not running. Status: Status.closed distributed.nanny - WARNING - Worker process still alive after 3.9999994277954105 seconds, killing distributed.nanny - WARNING - Worker process still alive after 3.9999988555908206 seconds, killing distributed.nanny - WARNING - Worker process still alive after 3.9999994277954105 seconds, killing
Client
Client-be0aaeb7-cc68-11ec-8045-8b56d9cf1b3c
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://127.0.0.1:36081/status |
Cluster Info
LocalCluster
810a252d
Dashboard: http://127.0.0.1:36081/status | Workers: 0 |
Total threads: 0 | Total memory: 0 B |
Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-513e68fd-f47f-4ee8-8608-7607d14ab318
Comm: tcp://127.0.0.1:45473 | Workers: 0 |
Dashboard: http://127.0.0.1:36081/status | Total threads: 0 |
Started: 11 minutes ago | Total memory: 0 B |
Workers
How many chips we have per type?
polygons_within = dask_geopandas.read_parquet("/home/jovyan/work/chips_gb/temp/chip_bounds/")
val_counts = polygons_within["signature_type"].value_counts().compute()
val_counts
0_0 173520
4_0 96657
7_0 35844
3_0 1452
5_0 1323
1_0 666
2_2 186
9_0 109
2_0 95
2_1 65
6_0 52
8_0 34
9_2 24
9_4 3
9_1 2
Name: signature_type, dtype: int64
If you want to do sliding based augmentation, skip the following steps to the Augmentation part.
Get sample of max 50k chips per type.¶
chip_bds = dask_geopandas.read_parquet("/home/jovyan/work/chips_gb/temp/chip_bounds/", columns=["geometry", "signature_type"])
types = ['0_0', '1_0', '3_0', '4_0', '5_0', '6_0', '7_0', '8_0', '2_0', '2_1', '2_2', '9_0', '9_1', '9_2', '9_4', '9_5']
for t in types:
df = chip_bds[chip_bds["signature_type"] == t].compute()
n = 50_000 if len(df) > 50_000 else len(df)
df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
print(t)
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
0_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
1_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
3_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
4_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
5_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
6_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
7_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet") /tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
8_0
2_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
2_1
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
2_2
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
9_0
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
9_1
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
9_2
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
9_4
9_5
/tmp/ipykernel_35908/477179734.py:4: UserWarning: this is an initial implementation of Parquet/Feather file support and associated metadata. This is tracking version 0.1.0 of the metadata specification at https://github.com/geopandas/geo-arrow-spec This metadata specification does not yet make stability promises. We do not yet recommend using this in a production setting unless you are able to rewrite your Parquet/Feather files. To further ignore this warning, you can do: import warnings; warnings.filterwarnings('ignore', message='.*initial implementation of Parquet.*') df.sample(n=n, random_state=42).to_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
client.restart()
Client
Client-b04e3f2f-cc6a-11ec-8c44-75a5a04dacd0
Connection method: Cluster object | Cluster type: distributed.LocalCluster |
Dashboard: http://127.0.0.1:8787/status |
Cluster Info
LocalCluster
9255e55a
Dashboard: http://127.0.0.1:8787/status | Workers: 16 |
Total threads: 16 | Total memory: 125.54 GiB |
Status: running | Using processes: True |
Scheduler Info
Scheduler
Scheduler-47069bd0-a500-473b-83ec-771ed12c985d
Comm: tcp://127.0.0.1:38699 | Workers: 16 |
Dashboard: http://127.0.0.1:8787/status | Total threads: 16 |
Started: Just now | Total memory: 125.54 GiB |
Workers
Worker: 0
Comm: tcp://127.0.0.1:33511 | Total threads: 1 |
Dashboard: http://127.0.0.1:43321/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:40007 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-r3janrla |
Worker: 1
Comm: tcp://127.0.0.1:37275 | Total threads: 1 |
Dashboard: http://127.0.0.1:45791/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32909 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-b5l2sxld |
Worker: 2
Comm: tcp://127.0.0.1:38481 | Total threads: 1 |
Dashboard: http://127.0.0.1:39569/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:36173 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-prtl0jos |
Worker: 3
Comm: tcp://127.0.0.1:43355 | Total threads: 1 |
Dashboard: http://127.0.0.1:38199/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:36395 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-9yv9y83f |
Worker: 4
Comm: tcp://127.0.0.1:35869 | Total threads: 1 |
Dashboard: http://127.0.0.1:44597/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46375 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-vherqhs9 |
Worker: 5
Comm: tcp://127.0.0.1:36835 | Total threads: 1 |
Dashboard: http://127.0.0.1:37957/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:32937 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-lacz516f |
Worker: 6
Comm: tcp://127.0.0.1:40365 | Total threads: 1 |
Dashboard: http://127.0.0.1:34245/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:38651 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-chjx7ejy |
Worker: 7
Comm: tcp://127.0.0.1:40069 | Total threads: 1 |
Dashboard: http://127.0.0.1:40185/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:38093 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-_qwzgqch |
Worker: 8
Comm: tcp://127.0.0.1:42995 | Total threads: 1 |
Dashboard: http://127.0.0.1:40601/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37615 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-yov29qc7 |
Worker: 9
Comm: tcp://127.0.0.1:33509 | Total threads: 1 |
Dashboard: http://127.0.0.1:34461/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:35023 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-w3y4hop3 |
Worker: 10
Comm: tcp://127.0.0.1:38725 | Total threads: 1 |
Dashboard: http://127.0.0.1:34375/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:35339 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-sgefjz6x |
Worker: 11
Comm: tcp://127.0.0.1:36625 | Total threads: 1 |
Dashboard: http://127.0.0.1:40889/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:35879 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-i8fmne07 |
Worker: 12
Comm: tcp://127.0.0.1:37871 | Total threads: 1 |
Dashboard: http://127.0.0.1:40673/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:43413 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-fwrre9jd |
Worker: 13
Comm: tcp://127.0.0.1:43107 | Total threads: 1 |
Dashboard: http://127.0.0.1:34685/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:37959 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-cgbyi2k_ |
Worker: 14
Comm: tcp://127.0.0.1:45631 | Total threads: 1 |
Dashboard: http://127.0.0.1:37735/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:46425 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-bbcm82iy |
Worker: 15
Comm: tcp://127.0.0.1:41225 | Total threads: 1 |
Dashboard: http://127.0.0.1:39435/status | Memory: 7.85 GiB |
Nanny: tcp://127.0.0.1:36903 | |
Local directory: /home/jovyan/work/signature_ai/create_chips/dask-worker-space/worker-qo4x6r0e |
Create TIF chips sampled from the mosaic.¶
specs = {
'chip_size': 64,
'bands': [1, 2, 3], #RGB
'mosaic_p': (
'/home/jovyan/work/urbangrammar_samba/'
'ghs_composite_s2/GHS-composite-S2.vrt'
),
'folder': (
'/home/jovyan/work/chips_gb/64/all/'
),
}
for t in types:
df = geopandas.read_parquet(f"/home/jovyan/work/chips_gb/temp/chip_bounds_per_type/{t}.parquet")
centroid = df.centroid
df['X'] = centroid.x.astype(int)
df['Y'] = centroid.y.astype(int)
tools.spilled_bag_of_chips(df, specs, npartitions=16)
print(t)
0_0
1_0
3_0
4_0
5_0
6_0
7_0
8_0
2_0
2_1
2_2
9_0
9_1
9_2
9_4
9_5
Split into train, validation and secret.¶
split = (.7, .15, .15)
for t in types:
for subset in ["train", "validation", "secret"]:
os.makedirs(f"{specs['folder'][:-4]}{subset}/{Path(t).stem}", exist_ok=True)
files = glob.glob(specs["folder"] + t + "/*.tif")
count = len(files)
for f in tqdm(files[:int(count * split[0])]):
f = Path(f)
shutil.copy(f, str(f.parent.parent.parent) + "/train/" + f.parent.stem + "/" + f.name)
for f in tqdm(files[int(count * split[0]):int(count * (split[0] + split[1]))]):
f = Path(f)
shutil.copy(f, str(f.parent.parent.parent) + "/validation/" + f.parent.stem + "/" + f.name)
for f in tqdm(files[int(count * (split[0] + split[1])):]):
f = Path(f)
shutil.copy(f, str(f.parent.parent.parent) + "/secret/" + f.parent.stem + "/" + f.name)
print(t, "done")
0_0 done
1_0 done
3_0 done
4_0 done
5_0 done
6_0 done
7_0 done
8_0 done
2_0 done
2_1 done
2_2 done
9_0 done
9_1 done
9_2 done
9_4 done
9_5 done
client.restart()
bds = polygons_within[~polygons_within["signature_type"].isin(["0_0", "4_0", "7_0"])].compute()
import xyzservices
bds.explore("signature_type",cmap="tab20", prefer_canvas=True,
tiles=xyzservices.TileProvider.from_qms("EOX::Maps - Sentinel-2 cloudless")(max_zoom=22),
max_zoom=22)
Augmentation¶
Filter underrepresented signature types
Build rook weights
Get components
Filter components
components have one feature - assign to one subset and skip shuffling
components have less than 20 features - assign to one subset and include in shuffling
components have more than 20 features - split and shuffle
compute hilbert curve
sort per hilbert distance
split into subsets along hilbert
shuffle
get GeoDataFrames containing subsets
Union components within each gdf and store as bounds of shuffling
repeatedly translate chips
sjoin translated chips within bounds
combine with singletons
divide overrepresented signature types into subsets and combine with the rest
sample Sentinel and dump TIFs to disk
Filter underrepresented signature types
client.restart()
polygons_within = dask_geopandas.read_parquet("/home/jovyan/work/chips_gb/temp/chip_bounds/")
chips_to_shuffle = polygons_within[polygons_within["signature_type"].isin(['6_0', '9_0', '9_1', '9_2', '9_4', '9_5'])].compute()
Build rook weights
%%time
W = libpysal.weights.Rook.from_dataframe(chips_to_shuffle, silence_warnings=True)
Get components
components = chips_to_shuffle.groupby(W.component_labels)
Filter components
singleton_components = {}
small_components = {}
shuffle_components = {}
for k, v in tqdm(components.indices.items()):
if len(v) == 1:
singleton_components[k] = v
elif len(v) < 20:
small_components[k] = v
else:
shuffle_components[k] = v
Collect final dataframes in lists.
train = []
validation = []
secret = []
split = (.7, .15, .15)
components have one feature - assign to one subset and skip shuffling
singleton_indices = numpy.array(list(singleton_components.values())).flatten()
singleton_df = chips_to_shuffle.iloc[singleton_indices].sample(frac=1, random_state=42)
total = singleton_df.shape[0]
train.append(singleton_df.iloc[:int(total * split[0])])
validation.append(singleton_df.iloc[int(total * split[0]):int(total * (split[0] + split[1]))])
secret.append(singleton_df.iloc[int(total * (split[0] + split[1])):])
components have less than 20 features - assign to one subset and include in shuffling
train_to_shuffle = []
validation_to_shuffle = []
secret_to_shuffle = []
small_indices = list(small_components.values())
shuffle(small_indices)
total = len(small_indices)
train_to_shuffle.append(
chips_to_shuffle.iloc[
numpy.concatenate(small_indices[
:int(total * split[0])
])]
)
validation_to_shuffle.append(
chips_to_shuffle.iloc[
numpy.concatenate(small_indices[
int(total * split[0]):int(total * (split[0] + split[1]))
])]
)
secret_to_shuffle.append(
chips_to_shuffle.iloc[
numpy.concatenate(small_indices[
int(total * (split[0] + split[1])):
])]
)
components have more than 20 features - split and shuffle
for component in tqdm(shuffle_components.values()):
comp_df = chips_to_shuffle.iloc[component]
# compute hilbert curve
hilbert = _hilbert_distance(comp_df, comp_df.total_bounds, level=8)
# sort per hilbert distance
comp_df_sorted = comp_df.set_index(hilbert).sort_index().reset_index(drop=True)
# split into subsets along hilbert
total = comp_df_sorted.shape[0]
train_to_shuffle.append(
comp_df_sorted.iloc[
:int(total * split[0])
]
)
validation_to_shuffle.append(
comp_df_sorted.iloc[
int(total * split[0]):int(total * (split[0] + split[1]))
]
)
secret_to_shuffle.append(
comp_df_sorted.iloc[
int(total * (split[0] + split[1])):
]
)
shuffle
get GeoDataFrames containing subsets
train_df_to_shuffle = pandas.concat(train_to_shuffle).reset_index(drop=True)
validation_df_to_shuffle = pandas.concat(validation_to_shuffle).reset_index(drop=True)
secret_df_to_shuffle = pandas.concat(secret_to_shuffle).reset_index(drop=True)
Union components within each gdf and store as bounds of shuffling
w_train = libpysal.weights.Rook.from_dataframe(train_df_to_shuffle, silence_warnings=True)
w_validation = libpysal.weights.Rook.from_dataframe(validation_df_to_shuffle, silence_warnings=True)
w_secret = libpysal.weights.Rook.from_dataframe(secret_df_to_shuffle, silence_warnings=True)
%%time
train_bounds = train_df_to_shuffle.dissolve(w_train.component_labels)
validation_bounds = validation_df_to_shuffle.dissolve(w_validation.component_labels)
secret_bounds = secret_df_to_shuffle.dissolve(w_secret.component_labels)
repeatedly translate chips
shuffle_by = 20
chip_size = specs["chip_size"] * 10
train_shuffled = []
validation_shuffled = []
secret_shuffled = []
for x, y in tqdm(product(range(0, chip_size, shuffle_by), range(shuffle_by, chip_size, shuffle_by))):
shuffled = train_df_to_shuffle.translate(xoff=x, yoff=y)
train_shuffled.append(train_df_to_shuffle.set_geometry(shuffled))
shuffled = validation_df_to_shuffle.translate(xoff=x, yoff=y)
validation_shuffled.append(validation_df_to_shuffle.set_geometry(shuffled))
shuffled = secret_df_to_shuffle.translate(xoff=x, yoff=y)
secret_shuffled.append(secret_df_to_shuffle.set_geometry(shuffled))
sjoin translated chips within bounds
train_shuffled_df = pandas.concat(train_shuffled)
validation_shuffled_df = pandas.concat(validation_shuffled)
secret_shuffled_df = pandas.concat(secret_shuffled)
%%time
train_shuffled_within = train_shuffled_df.drop(columns="index_right").sjoin(train_bounds[["geometry"]], predicate="within")
validation_shuffled_within = validation_shuffled_df.drop(columns="index_right").sjoin(validation_bounds[["geometry"]], predicate="within")
secret_shuffled_within = secret_shuffled_df.drop(columns="index_right").sjoin(secret_bounds[["geometry"]], predicate="within")
combine with singletons
train_chips = pandas.concat([train_df_to_shuffle, train_shuffled_within] + train).reset_index(drop=True)
validation_chips = pandas.concat([validation_df_to_shuffle, validation_shuffled_within] + validation).reset_index(drop=True)
secret_chips = pandas.concat([secret_df_to_shuffle, secret_shuffled_within] + secret).reset_index(drop=True)
keep only <50k per type
to_drop = []
for t in train_chips.signature_type.unique():
mask = train_chips.signature_type == t
if mask.sum() > 50_000:
to_drop.append(list(train_chips[mask].sample(frac=1).iloc[35000:].index))
drop_train = list(chain(*to_drop))
train_chips_limited = train_chips.drop(drop_train, axis=0)
to_drop = []
for t in validation_chips.signature_type.unique():
mask = validation_chips.signature_type == t
if mask.sum() > 7500:
to_drop.append(list(validation_chips[mask].sample(frac=1).iloc[7500:].index))
drop_validation = list(chain(*to_drop))
validation_chips_limited = validation_chips.drop(drop_validation, axis=0)
to_drop = []
for t in secret_chips.signature_type.unique():
mask = secret_chips.signature_type == t
if mask.sum() > 7500:
to_drop.append(list(secret_chips[mask].sample(frac=1).iloc[7500:].index))
drop_secret = list(chain(*to_drop))
secret_chips_limited = secret_chips.drop(drop_secret, axis=0)
divide overrepresented signature types into subsets and combine with the rest
polygons_within = dask_geopandas.read_parquet("/home/jovyan/work/chips_gb/temp/chip_bounds/")
overrepresented_chips = polygons_within[~polygons_within["signature_type"].isin(['6_0', '9_0', '9_1', '9_2', '9_4', '9_5'])].compute()
randomized = overrepresented_chips.sample(frac=1, random_state=42)
for t in ['0_0', '1_0', '3_0', '4_0', '5_0', '7_0', '8_0', '2_0', '2_1', '2_2']:
subset = randomized[randomized.signature_type == t].iloc[:50_000]
total = subset.shape[0]
train_chips_limited = train_chips_limited.append(subset.iloc[
:int(total * split[0])
])
validation_chips_limited = validation_chips_limited.append(subset.iloc[
int(total * split[0]):int(total * (split[0] + split[1]))
])
secret_chips_limited = secret_chips_limited.append(subset.iloc[
int(total * (split[0] + split[1])):
])
train_chips_limited.to_parquet("/home/jovyan/work/chips_gb/8/slided_train_50k.pq")
validation_chips_limited.to_parquet("/home/jovyan/work/chips_gb/8/slided_validation_50k.pq")
secret_chips_limited.to_parquet("/home/jovyan/work/chips_gb/8/slided_secret_50k.pq")
sample Sentinel and dump TIFs to disk
specs["folder"] = '/home/jovyan/work/chips_gb/8_shuffled/train/'
centroid = train_chips_limited.centroid
train_chips_limited['X'] = centroid.x.astype(int)
train_chips_limited['Y'] = centroid.y.astype(int)
tools.spilled_bag_of_chips(train_chips_limited, specs, npartitions=14)
client.restart()
specs["folder"] = '/home/jovyan/work/chips_gb/8_shuffled/validation/'
centroid = validation_chips_limited.centroid
validation_chips_limited['X'] = centroid.x.astype(int)
validation_chips_limited['Y'] = centroid.y.astype(int)
tools.spilled_bag_of_chips(validation_chips_limited, specs, npartitions=14)
client.restart()
specs["folder"] = '/home/jovyan/work/chips_gb/8_shuffled/secret/'
centroid = secret_chips_limited.centroid
secret_chips_limited['X'] = centroid.x.astype(int)
secret_chips_limited['Y'] = centroid.y.astype(int)
tools.spilled_bag_of_chips(secret_chips_limited, specs, npartitions=14)
TODO: check if they’re alright
import xyzservices
train_chips_limited[~train_chips_limited["signature_type"].isin(["0_0", "4_0", "7_0"])].iloc[:10000].explore("signature_type", style_kwds=dict(fill=False),cmap="tab20", prefer_canvas=True,
tiles=xyzservices.TileProvider.from_qms("EOX::Maps - Sentinel-2 cloudless")(max_zoom=22))
client.shutdown()
train_chips_limited[~train_chips_limited["signature_type"].isin(["0_0", "4_0", "7_0"])].
for path in glob.glob('/home/jovyan/work/chips_gb/8_shuffled/train/*'):
print(f"{path}: {len(glob.glob(path + '/*.tif'))}")